home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8899 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.0 KB  |  38 lines

  1. Path: news.th-darmstadt.de!news
  2. From: Enno Sandner <enno@intellektik.informatik.th-darmstadt.de>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: What is "void CAClass::CBClass::functionname()" ????
  5. Date: Tue, 27 Feb 1996 09:03:58 +0100
  6. Organization: Fachbereich Informatik, TH Darmstadt
  7. Message-ID: <3132BAEE.167EB0E7@intellektik.informatik.th-darmstadt.de>
  8. References: <leetn-2602961058380001@192.43.251.144>
  9. NNTP-Posting-Host: kitz.intellektik.informatik.th-darmstadt.de
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0 (X11; I; SunOS 4.1.3 sun4m)
  14.  
  15. tlee wrote:
  16. >    I saw this syntax first time in MSVC++, MFC 4.0 source code.
  17. > They are all over the code relates to the OLE.
  18. > Is this C++ standard or just some microsoftism?
  19.  
  20. 'functionname' is member of a nested class 'CBClass' which is
  21. enclosed in the class 'CAClass', i.e. its declaration looks like:
  22.  
  23.     class CAClass {
  24.         ...
  25.         class CBClass {
  26.             ...
  27.             void functionname();
  28.             ...
  29.         };
  30.         ...
  31.     };
  32.  
  33.  
  34.     Enno
  35.